home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / MAIL.XPI / bin / chrome / messenger.jar / content / messenger / AccountManager.xul < prev    next >
Encoding:
Extensible Markup Language  |  2005-03-09  |  3.2 KB  |  68 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://messenger/skin/accountManage.css" type="text/css"?>
  4.  
  5. <!DOCTYPE dialog SYSTEM "chrome://messenger/locale/AccountManager.dtd" >
  6. <dialog id="accountManager" 
  7.         windowtype="mailnews:accountmanager"
  8.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  9.         title="&accountManagerTitle.label;"
  10.         style="&accountManager.size;"
  11.         persist="screenX screenY"
  12.         buttons="accept,cancel,help"
  13.         onload="onLoad(event);"
  14.         ondialogaccept="return onAccept();"
  15.         ondialoghelp="return doHelpButton();">
  16. <stringbundle id="bundle_brand" src="chrome://branding/locale/brand.properties"/>
  17. <stringbundle id="bundle_prefs" src="chrome://messenger/locale/prefs.properties"/>
  18. <script type="application/x-javascript" src="chrome://messenger/content/amUtils.js"/>
  19. <script type="application/x-javascript" src="chrome://messenger/content/accountUtils.js"/>
  20. <script type="application/x-javascript" src="chrome://messenger/content/am-prefs.js"/>
  21. <script type="application/x-javascript" src="chrome://messenger/content/AccountManager.js"/>
  22. <script type="application/x-javascript" src="chrome://messenger/content/am-help.js"/>
  23. <script type="application/x-javascript" src="chrome://help/content/contextHelp.js"/>
  24.  
  25.   <hbox flex="1">
  26.     <vbox style="&accountTree.width;">
  27.       <tree datasources="rdf:msgaccountmanager" flex="1"
  28.             containment="http://home.netscape.com/NC-rdf#Settings"
  29.             onselect="onAccountClick(event.target)" id="accounttree"
  30.             seltype="single"
  31.             sortResource="http://home.netscape.com/NC-rdf#FolderTreeName"
  32.             sortDirection="ascending"
  33.             ref="msgaccounts:/" hidecolumnpicker="true">
  34.         <treecols>
  35.           <treecol id="AccountCol" flex="1" primary="true" hideheader="true"/>
  36.         </treecols>
  37.         <template>
  38.           <rule>
  39.             <treechildren>
  40.               <treeitem uri="..." open="true"
  41.                         PageTag="rdf:http://home.netscape.com/NC-rdf#PageTag">
  42.                 <treerow>
  43.                   <treecell class="treecell-indent"
  44.                             properties="isDefaultServer-rdf:http://home.netscape.com/NC-rdf#IsDefaultServer"
  45.                             label="rdf:http://home.netscape.com/NC-rdf#Name"/>
  46.                 </treerow>
  47.               </treeitem>
  48.             </treechildren>
  49.           </rule>
  50.         </template>
  51.       </tree>
  52.       
  53.       <button label="&addAccountButton.label;" oncommand="onAddAccount(event);" id="addAccountButton"
  54.               prefstring="mail.disable_new_account_addition"
  55.               accesskey="&addAccountButton.accesskey;"/>
  56.       <button label="&setDefaultButton.label;" oncommand="onSetDefault(event);" disabled="true" id="setDefaultButton"
  57.               prefstring="mail.disable_button.set_default_account"
  58.               accesskey="&setDefaultButton.accesskey;"/>
  59.       <button disabled="true" label="&removeButton.label;" oncommand="onRemoveAccount(event);" id="removeButton"
  60.               prefstring="mail.disable_button.delete_account"
  61.               accesskey="&removeButton.accesskey;"/>
  62.     </vbox>
  63.   
  64.     <iframe id="contentFrame" name="contentFrame" flex="1"/>
  65.   </hbox>
  66.  
  67. </dialog>
  68.